home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QRZ! Ham Radio 5
/
QRZ Ham Radio Callsign Database - Volume 5.iso
/
files
/
mac
/
sftkisrc.hqx
/
SoftKiss.src.1.8
/
lib
/
sfk_die.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-06-19
|
334 b
|
22 lines
/*
* interface to random number generator
*/
/*
* i = die (max)
* long max;
* returns a value from 0 to n-1, drawn from a random population with
* even distribution.
*/
long die(long max);
/*
* return a random 32bit number
*/
unsigned long lrand(void);
/*
* pick a starting point for lrand
*/
void init_lrand(void);